home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00142_Script_fastForwardTOscene3 < prev    next >
Text File  |  1999-03-01  |  401b  |  27 lines

  1. on mouseWithin me
  2.   cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor -1
  7. end
  8.  
  9. on mouseDown me
  10.   repeat with x = 1 to 6
  11.     if soundBusy(x) then 
  12.       set the volume of sound x to 255
  13.       sound stop x
  14.     end if
  15.   end repeat
  16.   cursor 200
  17.   
  18. end
  19.  
  20. on mouseUp me
  21.   cursor -1
  22.   
  23.   
  24.   go to movie "scene3_4"
  25.   
  26. end 
  27.